home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / parted / gnu.h < prev    next >
C/C++ Source or Header  |  2006-04-20  |  1KB  |  46 lines

  1. /*
  2.     libparted - a library for manipulating disk partitions
  3.     Copyright (C) 2001 Free Software Foundation, Inc.
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  18. */
  19.  
  20. #ifndef PED_GNU_H_INCLUDED
  21. #define PED_GNU_H_INCLUDED
  22.  
  23. #include <parted/parted.h>
  24.  
  25. #include <hurd/store.h>
  26.  
  27. #define GNU_SPECIFIC(dev)    ((GNUSpecific*) (dev)->arch_specific)
  28.  
  29. typedef    struct _GNUSpecific    GNUSpecific;
  30.  
  31. struct _GNUSpecific {
  32.     struct store*    store;
  33.     int consume;
  34. };
  35.  
  36. extern PedArchitecture ped_gnu_arch;
  37.  
  38. /* Initialize a PedDevice using SOURCE.  The SOURCE will NOT be destroyed;
  39.    the caller created it, it is the caller's responsilbility to free it
  40.    after it calls ped_device_destory.  SOURCE is not registered in Parted's
  41.    list of devices.  */
  42. PedDevice* ped_device_new_from_store (struct store *source);
  43.  
  44. #endif /* PED_GNU_H_INCLUDED */
  45.  
  46.